home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Zoom 2
/
Zoom - Release 2 (1996)(Active Software)[!].iso
/
programming
/
amigac
/
c_manual
/
hintsandtips
/
example2.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-05-25
|
404 b
|
18 lines
/* Example 2 */
/* This program will print "Hello!" in the CLI window if */
/* started from CLI, or the text will be printed in a special */
/* window that is automatically opened if run from workbench. */
void main();
void main()
{
int loop;
printf( "Hello!\n" );
/* Wait for a while: */
for( loop = 0; loop < 500000; loop++ )
;
}